home *** CD-ROM | disk | FTP | other *** search
- %case include%
- %if classname = CButton%
- #include <CAMButton.h>
- %else%
- #include "%classname%.h"
- %endif%
- %case classDecl%
- %if classname = CButton%
- class CAMButton;
- %else%
- class %classname%;
- %endif%
- %case defineItem%
- %CtlItemPane%
- %case DoCommand%
- %if clickCmd > 1023%
- case cmd%itemName%:
- Do%itemname% ();
- break;
- %endif%
- %case auxiliaryMethod.decl%
- %if clickCmd > 1023%
- virtual void Do%itemname%% %(void);
- %endif%
- %case auxiliaryMethod%
- %if clickCmd > 1023%
- /*----------*/
- %if window%
- void C%windname%::Do%itemname% (void)
- %else%
- void C%dlogname%::Do%itemname% (void)
- %endif%
- {
- } /* Do%itemname% */
-
- %endif%
- %case instance%
- %if classname = CButton%
- CAMButton *%itemname%;
- %else%
- %classname%% %*%itemname%;
- %endif%
- %case create%
-
- %if classname = CButton%
- %itemname% = new CAMButton;
- %else%
- %itemname% = new %classname%;
- %endif%
- %CtlItemPane%
-